home *** CD-ROM | disk | FTP | other *** search
- /* Rexx by: David DuPre */
- /* INSTALL.CMD */
- /* Recreate the PM-WEATHER folder if it is accidentally deleted */
-
- parse source one two w3
- current=directory() /* Thanks to:Duane A. Chamblee 1/17/96 */
- tgtdrv = substr(w3,1,2)
-
- option = "update"
-
- call RxFuncAdd 'SysCreateObject','RexxUtil','SysCreateObject'
-
- /* add the PMWEATHER ICON */
- Classname= 'WPProgram'
- Title = 'WEATHER from the Internet'
- Location = '<WP_DESKTOP>'
- Setup = 'EXENAME='current'\PMWEATHR.EXE;OBJECTID=<PMWTHR>;STARTUPDIR='current';ICONFILE='current'\PMWEATHR.ICO'
- result=SysCreateObject(classname,Title,Location,Setup,option)
-
- RETURN 0